home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / cfexecute.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  716 b   |  30 lines

  1. <!--- This example shows the use of CFEXECUTE --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>CFEXECUTE Example</TITLE>
  5. </HEAD>
  6.  
  7. <H3>CFEXECUTE Example</H3>
  8.  
  9. <!---------------------------------------------------------------------- 
  10. This example illustrates use of the CFEXECUTE tag. 
  11. ----------------------------------------------------------------------->
  12. <HTML>
  13. <HEAD>
  14. <TITLE>CFEXECUTE</TITLE>
  15. </HEAD>
  16.  
  17. <BODY>
  18. <H3>CFEXECUTE</H3>
  19. <P>
  20. This example executes the Windows NT version of the netstat network monitoring program, and places its output in a file.
  21.  
  22. <CFEXECUTE NAME="C:\Winnt\System32\netstat.exe"
  23.     ARGUMENTS="-e" 
  24.     OUTPUTFILE="C:\Temp\output.txt"
  25.     TIMEOUT="1">
  26.  
  27. </CFEXECUTE>
  28. </BODY>
  29. </HTML>       
  30.